home *** CD-ROM | disk | FTP | other *** search
- ** CUSTCOPY.PRG - outputs data to text file using COPY TO..DELIMITED
- PARA datafile,ndxfile,textfile,fldsepar
- if len(trim(ndxfile))=0
- use &datafile.
- else
- use &datafile. index &ndxfile.
- endif
- copy to &textfile. delimited with &fldsepar.
- close data
- return
-